home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / commands / printenv.c < prev    next >
C/C++ Source or Header  |  1990-07-19  |  188b  |  11 lines

  1. /* printenv - print the current environment    Author: Richard Todd */
  2.  
  3. main()
  4. {
  5.   extern char **environ;
  6.   char **sptr;
  7.   for (sptr = environ; *sptr; ++sptr) {
  8.     prints("%s\n", *sptr);
  9.   }
  10. }
  11.